home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / modsampleprint.bas < prev    next >
Encoding:
BASIC Source File  |  2001-10-16  |  899 b   |  26 lines

  1. Attribute VB_Name = "modSamplePrint"
  2. '******************************************************************'
  3. '*                                                                *'
  4. '*                      TurboCAD for Windows                      *'
  5. '*                   Copyright (c) 1993 - 2001                    *'
  6. '*             International Microcomputer Software, Inc.         *'
  7. '*                            (IMSI)                              *'
  8. '*                      All rights reserved.                      *'
  9. '*                                                                *'
  10. '******************************************************************'
  11.  
  12. Option Explicit
  13.  
  14. Global objApp As Application
  15. Global Drs As Drawings
  16. Global Dr As Drawing
  17. Global Vis As Views
  18. Global Vi As View
  19. Global Bls As Blocks
  20. Global Bl As Block
  21.  
  22. Sub Main()
  23.     frmSamplePrint.Show 1
  24. End Sub
  25.  
  26.